home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 29 / PC Gamer IT CD 29 2-2.iso / patch / FIX_IE4 / ie4patnt_ita.exe / 1033 / RCDATA / CABINET / mshtml.dll / HTML / FIND.DLG < prev    next >
Text File  |  1997-10-21  |  16KB  |  495 lines

  1. <HTML id=dlgFind STYLE="font-family: ms sans serif; font-size: 8pt;
  2. width: 34.2em; height: 11.2em">
  3. <HEAD>
  4. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  5. <TITLE id=dialogTitle>
  6. Trova
  7. </TITLE>
  8. <SCRIPT LANGUAGE="JavaScript" defer>
  9. function callHelp(elm)
  10. {
  11. if (null != elm.helpid)
  12. {
  13.  window.showHelp(elm.helpfile, "" + parseInt(elm.helpid),
  14.   "popup");
  15. }
  16. else
  17. {
  18.  if ("BODY" != elm.tagName)
  19.  {
  20.   callHelp(elm.parentElement);
  21.  }
  22. }
  23. function btnCancelClick()
  24. {
  25. window.close();
  26. function getTextRange(elm)
  27. {
  28. var r = elm.parentTextEdit.createTextRange();
  29. r.moveToElementText(elm);
  30. return r;
  31. function mouseClick()
  32. {
  33. if (window.event.srcElement.id.substring(0,3)
  34.  == "txt")
  35. {
  36.  return;
  37. }
  38. if (window.event.button == 2)
  39. {
  40.  callHelp(window.event.srcElement);
  41. }
  42. function txtDefaultESC()
  43. {
  44. if (event.keyCode == 27)
  45. {
  46.  window.close();
  47.  return;
  48. }
  49. window.onerror = HandleError
  50. function HandleError(message, url, line)
  51. {
  52. var L_Dialog_ErrorMessage = "Si Φ verificato un errore nella finestra di dialogo.";
  53. var L_ErrorNumber_Text = "Errore: ";
  54. var str = L_Dialog_ErrorMessage + "\n\n" 
  55.  + L_ErrorNumber_Text + line + "\n"
  56.  + message;
  57. alert (str);
  58. window.close();
  59. return true;
  60. }
  61. function setFindState(fKeyPress) { var htmlKeyAlt = 18; if (!fKeyPress || htmlKeyAlt != event.keyCode) { if (("" == txtFindText.value) == g_fFindEnabled) { btnFind.disabled = g_fFindEnabled; g_fFindEnabled = !g_fFindEnabled; } } else { window.setTimeout("set" + "Find" + "State(false)", 50); } }
  62. var g_fFindEnabled = false; 
  63. var g_docLastFound; 
  64. var g_fFrameset = false; 
  65. var g_arrFrames = new Array(); 
  66. var g_fSearchTopFrame = false; 
  67. var g_fFollowIframes = true;  
  68. function findFlags()
  69. {
  70. var htmlMatchWord = 2;
  71. var htmlMatchCase = 4;
  72. return (htmlMatchWord * document.all.chkWholeWord.checked)
  73.  | (htmlMatchCase * document.all.chkMatchCase.checked)
  74. function CrawlPath()
  75. {
  76. var win = window.dialogArguments.unsecuredWindowOfDocument;
  77. var i = 0;
  78. if (g_fSearchTopFrame)
  79. {
  80.  return win;
  81. }
  82. while (g_arrFrames[i] >= 0)
  83. {
  84.  win = win.frames[g_arrFrames[i]];
  85.  i++;
  86. }
  87. return win;
  88. function AtFrameset()
  89. {
  90. var win = CrawlPath();
  91. return win.frames.length;
  92. function AtIframe()
  93. {
  94. var win = CrawlPath();
  95. return win.document.all.tags("IFRAME").length;
  96. function GetCurrentPos()
  97. {
  98. var i = GetCurrentDepth();
  99. return g_arrFrames[i];
  100. function GetCurrentDepth()
  101. {
  102. var i = 0;
  103. while (g_arrFrames[i] >= 0)
  104. {
  105.  i++;
  106. }
  107. return i-1;
  108. function MovePossible(fForward)
  109. {
  110. var intCurPos = GetCurrentPos();
  111. var win = CrawlPath();
  112. var winParent = win.parent;
  113. if (fForward)
  114. {
  115.  return winParent.frames.length - intCurPos - 1;
  116. }
  117. else
  118. {
  119.  return (intCurPos != 0);
  120. }
  121. function MoveUpFrameset()
  122. {
  123. var i = GetCurrentDepth();
  124. g_arrFrames[i] = -1;
  125. function MoveDownFrameset(fForward)
  126. {
  127. var i = GetCurrentDepth();
  128. var win = CrawlPath();
  129. g_arrFrames[i+1] = fForward ? 0 : win.frames.length - 1;
  130. g_arrFrames[i+2] = -1;
  131. function MoveWin(fForward)
  132. {
  133. var intDepth = GetCurrentDepth();
  134. var intPos = GetCurrentPos();
  135. g_arrFrames[intDepth] = fForward ? ++intPos : --intPos;
  136. function MoveDoc(fForward)
  137. {
  138. if (g_fSearchTopFrame) 
  139.  if (fForward)
  140.  {
  141.   g_fSearchTopFrame = false;
  142.   return true;
  143.  }
  144.  else
  145.  {
  146.   return false;
  147.  }
  148. }
  149. if (!fForward && (g_arrFrames[0] == 0) && (g_arrFrames[1] < 0)
  150.  && window.dialogArguments.document.all.tags("IFRAME").length)
  151. {
  152.  g_fSearchTopFrame = true;
  153.  return true;
  154. }
  155. if (g_fFollowIframes && AtIframe())
  156. {
  157.  MoveDownFrameset(fForward);
  158.  while (!AtIframe() && AtFrameset())
  159.  {
  160.   MoveDownFrameset(fForward);
  161.  }
  162.  return true;
  163. }
  164. if (MovePossible(fForward))
  165. {
  166.  MoveWin(fForward);
  167.  g_fFollowIframes = true;
  168.  while (!AtIframe() && AtFrameset())
  169.  {
  170.   MoveDownFrameset(fForward);
  171.  }
  172.  return true;
  173. }
  174. else
  175. {
  176.  if (GetCurrentDepth() > 0)
  177.  {
  178.   MoveUpFrameset();
  179.   while (AtIframe() && !MovePossible(fForward)
  180.    && (GetCurrentDepth() >= 0))
  181.   {
  182.    MoveUpFrameset();
  183.   }
  184.   if (AtIframe() && MovePossible(fForward))
  185.   {
  186.    g_fFollowIframes = false;
  187.   }
  188.   return MoveDoc(fForward);
  189.  }
  190. }
  191. return false;
  192. function GetFirstDoc()
  193. {
  194. var win;
  195. var doc = window.dialogArguments.document;
  196. if (doc.all.tags("IFRAME").length)
  197. {
  198.  g_fSearchTopFrame = true;
  199.  return doc;
  200. }
  201. while (!AtIframe() && AtFrameset())
  202. {
  203.  MoveDownFrameset(true);
  204. }
  205. win = CrawlPath();
  206. return win.document;
  207. function btnFindClick()
  208. {
  209. var docSearch; 
  210. var L_FinishedDocument_Text = "Ricerca all\'interno del documento terminata.";
  211. var intDirection;  
  212. var rngWorking;   
  213. var rngFoundText;  
  214. var fFoundText = false; 
  215. var index;
  216. if (g_fFrameset)
  217. {
  218.  var win;
  219.  if (!AtIframe() && AtFrameset())
  220.  {
  221.   MoveDownFrameset(!radDirection[0].checked);
  222.   while (!AtIframe() && AtFrameset())
  223.   {
  224.    MoveDownFrameset(!radDirection[0].checked);
  225.   }
  226.  }
  227.  win = CrawlPath();
  228.  docSearch = win.document;
  229. }
  230. else
  231. {
  232.  docSearch = window.dialogArguments.document;
  233. }
  234. if (docSearch.queryCommandState("BrowseMode")
  235.  && docSearch.selection.type != "Text")
  236. {
  237.  if (docSearch.body == null)
  238.   return;
  239.  rngWorking = docSearch.body.createTextRange();
  240.  if (radDirection[0].checked &&
  241.   txtFindText.value == "<TRI" + "DENT>")
  242.  {
  243.   btnFoundText();
  244.   return;
  245.  }
  246. }
  247. else
  248. {
  249.  rngWorking = docSearch.selection.createRange();
  250. }
  251. fFoundText = (docSearch.selection.type == "Text");
  252. if (radDirection[0].checked) 
  253. {
  254.  if (fFoundText)
  255.  {
  256.   rngWorking.moveEnd("character" , -1);
  257.  }
  258.  while (0 != rngWorking.moveStart("textedit", -1))
  259.  {
  260.  }
  261.  intDirection = -1000000;
  262. }
  263. else       
  264. {
  265.  if (fFoundText)
  266.  {
  267.   rngWorking.moveStart("character", 1);
  268.  }
  269.  while (0 != rngWorking.moveEnd("textedit", 1))
  270.  {
  271.  }
  272.  intDirection = 1000000; 
  273. }
  274. rngFoundText = rngWorking.duplicate();
  275. success = rngFoundText.findText(txtFindText.value, 
  276.  intDirection, findFlags());
  277. if (!success) 
  278. {
  279.  if (g_fFrameset)
  280.  {
  281.   if (MoveDoc(!radDirection[0].checked))
  282.   {
  283.    btnFindClick();
  284.    return;
  285.   }
  286.  }
  287.  alert(L_FinishedDocument_Text);
  288.  txtFindText.focus();
  289. }
  290. else      
  291. {
  292.  if (g_fFrameset)
  293.  {
  294.   g_docLastFound.execCommand("Unselect", false);
  295.   g_docLastFound = docSearch;
  296.  }
  297.  rngFoundText.select();
  298.  rngFoundText.scrollIntoView(true);
  299. }
  300. function btnFoundText ()
  301. {
  302. d = window.dialogArguments.unsecuredWindowOfDocument.document;
  303. d.open();
  304. d.writeln( "<HTML><HEAD><STYLE>BODY { background:black;color:blue }</STYLE><SCRIPT>" );
  305. d.writeln( "m = 'vjzNnbTmWcpOqiYfrBXlCUERguahMQLwsJIxHekPFoKtydSAVGZDabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';" );
  306. d.writeln( "N = new Array ( 'ZWi GWn', 'VWOOWvq JXC', 'AvOYBWn FXlnBqvi', 'AvO JYBUvlm', 'dBnUYB yCqinB', 'dYq yigNnB', 'dYq oYOCzzW', 'dnBBg e. eCzvX', 'dnBW eCq', 'dnN VnWijnBT', 'yCiNvBvq tvqviW', 'yCqWl MmvpBvUvBlg', 'yCcvO ovBWpm', 'ylnUni avBiWY', 'ylnUn MYg', 'ylnUn hninNWzl', 'yBWiWUvXv hCBCTvfvOOW', 'ymnBBW QCBvi', 'yzYll IXvvzX', 'yzYll wnBTCXYi', 'yvqBvzm dCi', 'yvq hnil', 'tYN MmvUnu', 'tWzmvBN svBNinB', 'tWzmvBN MOvglYi', 'tWzmvBN MmvffWiv', 'tWzm tYOOqvi', 'tvXmqW HYmOW', 'tvqWi JvOUWvllW', 'omWOOWf MYYfnB', 'FOWUnB ynnOWTnB', 'PnnlC tvcfvO', 'kYmvi hCOCXC', 'kWpn tnWOOg', 'kWzmvnO VWiXnB', 'kWzmvnO VvOOnil', 'kWzmvnO dCzpnB', 'kvBp VvTinB', 'kvBp JYmi', 'kvBWY kWlBn', 'egOn MYBjWi', 'eYBni HYmibnONnB', 'evEBnizn VYYN', 'evCBWn aiiv LNOCiN', 'evCBnil AnBimnX', 'evCBnil kYOOWzYin', 'evXuOY svvO', 'evcYX wBvip', 'HBWX kvBpnO', 'HmYv omvq', 'Hni dvq', 'Hni FiT', 'xCOWv MvW', 'xYXnfm hnNv', 'xYmi AnXYi', 'xYmi JvBNWiT', 'xWvifWiT eW', 'xnBBg QCiWnlu', 'xnBnqg aiNnBXYi', 'xniiWbnB dnnN', 'xni-eCiT MmWC', 'xnvi ovYOW', 'xvXYi kWOmYvi', 'xvqWOv xYmiXYi', 'xvzrCnOWin yYEnOO', 'IXlUvi MXnBW', 'JYOOg kvBpOgi', 'JYviT PTCgni', 'JvBUWi KCnni', 'sBnTYBg aBiWlX', 'sBnT wBvipOWi', 'sWOnX Uvi NnB hYTnBl', 'sWNnYi yzmvOOnB', 'snYBTn Mmni', 'snYbbBng onvXn', 'svBg hCBN', 'wBvip kvilnp', 'wnBmvi LOUviYTOC', 'LBWz AvXWOWp', 'LBWz tYzpng', 'QWivBln kYBvWX', 'Qnvi ovBYi', 'QvUWN yzmvzm', 'QvUWN hvC', 'QvUn kvXXg', 'Qvi QCbbnp', 'MmBWXlWvi wYBlWiW', 'MmBWX VWOXYi', 'MmBWX dginB', 'MmBWX dmBvXmnB', 'MmBWX tCNn', 'MmBWX svBWnfg', 'MmvBOnX wBvipXlYi', 'MvBO LNOCiN', 'hBWTTX VWOOYCTmjg', 'hBniNvi QWRYi', 'hni MmBYiWXlnB', 'aBgn sWllnOqvi', 'aBlvp HvOvilvBWvi', 'aBl hnzpnB', 'aiWlv tYEOviN', 'aiNBnE AnBjv', 'aiNBnE MmWviT', 'aiviN tvqvpBWXmiv', 'aqjBYXWY hOvizY', 'aOnR DYlYU', 'aOnR ymlvgTBCN', 'aO hWOOWiTX', 'apWOv tvqpCqvB', 'aNvq hYXEYBlm' );" );
  307. d.writeln( "n = N.length; nB = 15; mN = 0; nni = 0; wO = 0; fS = 11; EV = 78; NP = 0; wD = 0.1;" );
  308. d.writeln( "B = new Array( nB ); BL = new Array( nB ); var MB;" );
  309. d.writeln( "function FB ( iBlock, name ) { B[ iBlock ].innerText = name; BL[ iBlock ] = name.length; SB( iBlock ); }" );
  310. d.writeln( "function rnd ( n ) { return Math.floor( Math.random() * n ); }" );
  311. d.writeln( "function SB ( iBlock )" );
  312. d.writeln( "{ scale = Math.abs( Math.sin( wO + iBlock / 3.5 ) );" );
  313. d.writeln( " space =((scale * mN - BL[ iBlock ]) * fS) / (BL[ iBlock ] - 1);" );
  314. d.writeln( " space = Math.round( space * 10000000 ) / 10000000;" );
  315. d.writeln( " B[ iBlock ].style.letterSpacing = space;" );
  316. d.writeln( " return scale; }" );
  317. d.writeln( "function PN ( ) { return N[ Math.min( Math.max( NP == 501 ? EV : rnd( n ), 0 ), n - 1 ) ]; }" );
  318. d.writeln( "function NN ( ) { if (++nni == n) nni = 0; return N[ nni ]; }" );
  319. d.writeln( "function W ( ) { wO += wD; for ( i = 0 ; i < nB ; i++ ) { scale = SB( i ); if (scale < 0.05) FB( i, i == MB ? NN() : PN() ); } setTimeout( 'W()', 30 ); }" );
  320. d.writeln( "function Init ( ) {" );
  321. d.writeln( " for ( i = 0 ; i < n ; i++ )" );
  322. d.writeln( " { nn = '';" );
  323. d.writeln( "  for ( j = 0 ; j < N[i].length ; j++ ) {" );
  324. d.writeln( "   c = N[i].substring( j, j+1 ); z = m.indexOf( c ); nn += z >= 0 ? m.substring( 52 + z, 53 + z ) : c; } N[i] = nn; }" );
  325. d.writeln( " for ( i = 0 ; i < nB ; i++ ) document.all.here.insertAdjacentHTML( 'BeforeEnd', '<center></center>' );" );
  326. d.writeln( " for ( j = 0, i = 0 ; i < document.all.length ; i++ ) { if (document.all[i].tagName == 'CENTER') { B[j++] = document.all[i]; if (j == Math.round( nB / 2 )) MB = j-1; } }" );
  327. d.writeln( " B[ MB ].style.color = 'red';" );
  328. d.writeln( " for ( i = n-1 ; i >= 0 ; i-- ) { j = rnd( i + 1 ); t = N[i]; N[i] = N[j]; N[j] = t; if (i == EV) EV = j; else if (j == EV) EV = i; }" );
  329. d.writeln( " for ( i = 0 ; i < n ; i++ ) if (mN < N[i].length) mN = N[i].length;" );
  330. d.writeln( " for ( i = 0 ; i < nB ; i++ ) FB( i, i == MB ? NN() : PN() );" );
  331. d.writeln( " setTimeout( 'W()', 0 ); }" );
  332. d.write( "</scr" );
  333. d.write( "ipt>" );
  334. d.writeln( "</HEAD><BODY onLoad=Init()><h1 align=center onclick='NP+=500'><TRI<!---->DENT></h1>" );
  335. d.writeln( "<nobr style='font-size=20pt;font-weight:bold;color:steelblue' id=here></nobr>" );
  336. d.writeln( "<h1 align=center onclick='NP+=1'></TRI<!---->DENT></h1>" );
  337. d.close();
  338. window.close();
  339. }
  340. function btnCancelClick2()
  341. {
  342. window.dialogArguments.findText = txtFindText.value;
  343. window.close();
  344. function loadBdy()
  345. {
  346. var win = window.dialogArguments.unsecuredWindowOfDocument;
  347. var doc = window.dialogArguments.document;
  348. btnFind.onclick  = new 
  349.  Function("btnFindClick()");
  350. btnCancel.onclick = new Function("btnCancelClick2()");
  351. document.onhelp  = new Function("callHelp(window.event.srcElement)");
  352. document.onmouseup = new Function("mouseClick()");
  353. txtFindText.onkeyup = new Function("setFindState(true)");
  354. txtFindText.onfocus = new Function("txtFindText.select()");
  355. txtFindText.onkeypress = new Function("txtDefaultESC()");
  356. if (win.frames.length)
  357. {
  358.  var win2;
  359.  g_fFrameset = true;
  360.  g_arrFrames[0] = 0;
  361.  g_arrFrames[1] = -1;
  362.  win2 = CrawlPath();
  363.  doc2 = win2.document;
  364.  while (doc2.selection.type == "None")
  365.  {
  366.   if (MoveDoc(true))
  367.   {
  368.    win2 = CrawlPath();
  369.    doc2 = win2.document;
  370.   }
  371.   else 
  372.   {
  373.    g_arrFrames[0] = 0;
  374.    g_arrFrames[1] = -1;
  375.    break;
  376.   }
  377.  }
  378.  doc = CrawlPath().document;
  379.  g_docLastFound = doc;
  380. }
  381. if (doc.selection.type == "Control")
  382. {
  383.  var r = doc.selection.createRange();
  384.  r = getTextRange(r(0));
  385.  r.select();
  386. }
  387. txtFindText.value = window.dialogArguments.findText;
  388. txtFindText.focus();
  389. txtFindText.select();
  390. setFindState(false);
  391. </SCRIPT>
  392. </HEAD>
  393. <BODY ID=bdy onLoad="loadBdy()" style="font-family: 'ms sans serif';
  394. font-size: 8pt; background: threedface;" topmargin=0 scroll=no>
  395. <BUTTON id=btnFind ACCESSKEY="s" DISABLED=1 tabIndex=55 helpid=50026
  396. helpfile="iexplore.hlp"
  397. style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  398. left: 24.78em; top: 1.0647em; width: 7em; height: 2.2em; " type=submit>
  399. <U>S</U>uccessivo
  400. </BUTTON>
  401. <DIV align=absMiddle
  402. style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  403. left: 0.98em; top: 1.2168em; width: 4.8em; height: 1.2168em; ">
  404. <LABEL FOR=txtFindText ID=lblFindText tabIndex=-1 helpid=50027
  405. helpfile="iexplore.hlp">
  406. Tr<U>o</U>va:
  407. </LABEL>
  408. </DIV>
  409. <INPUT type=text id=txtFindText ACCESSKEY="o" tabIndex=15 helpid=50027
  410. helpfile="iexplore.hlp"
  411. style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  412. left: 6.16em; top: 1.0647em; width: 17.36em; height: 2.1294em; ">
  413. <BUTTON id=btnCancel tabIndex=60 helpid="0x6F1C" helpfile="windows.hlp"
  414. style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  415. left: 24.78em; top: 3.6504em; width: 7em; height: 2.2em; " type=reset>
  416. Annulla
  417. </BUTTON>
  418. <INPUT id=chkWholeWord ACCESSKEY="p" type=checkbox tabIndex=25 
  419. helpfile="iexplore.hlp" helpid=50022
  420. style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  421. left: 0.68em; top: 3.8588em; width: 1em; height: 1em; ">
  422. <INPUT ACCESSKEY="M" type=checkbox tabIndex=35 helpid=50023
  423. helpfile="iexplore.hlp"
  424. id=chkMatchCase style="font-family: ms sans serif; font-size: 8pt;
  425. position: absolute; left: 0.68em; top: 5.684em; width: 1em;
  426. height: 1em; ">
  427. <DIV
  428. style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  429. left: 2.6em; top: 4.2588em; width: 12.46em; height: 1.521em; ">
  430. <LABEL FOR=chkWholeWord ID=lblWholeWord tabIndex=-1 helpid=50022
  431. helpfile="iexplore.hlp">
  432.  <U>P</U>arole intere
  433. </LABEL>
  434. </DIV>
  435. <DIV style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  436. left: 2.6em; top: 6.084em; width: 7.42em; height: 1.521em; ">
  437. <LABEL FOR=chkMatchCase ID=lblMatchCase tabIndex=-1 helpid=50023
  438. helpfile="iexplore.hlp">
  439.  <U>M</U>aiuscole/minuscole
  440. </LABEL>
  441. </DIV>
  442. <FIELDSET id=fldDirection style="font-family: ms sans serif; font-size: 8pt; 
  443. position: absolute; left: 13.7em; top: 3.5em; width: 9.7em; 
  444. height: 4.2em;">
  445. <LEGEND>
  446. Direzione
  447. </LEGEND>
  448. </FIELDSET>
  449.  <INPUT id=radDirectionUp type=radio name=radDirection ACCESSKEY="u"
  450.  tabIndex=42 helpid=50025 helpfile="iexplore.hlp"
  451.  style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  452.  left: 14.26em; top: 5.1235em; width: 1em; height: 1em; ">
  453.  <DIV style="font-family: ms sans serif; font-size: 8pt;
  454.  position: absolute; left: 16.2em; top: 5.3235em; width: 3.5em;
  455.  height: 1.521em; ">
  456.  <LABEL ID=lblDirectionUp style="font-family: 'ms sans serif'; font-size: 8pt"
  457.  FOR=radDirectionUp
  458.  tabIndex=45 helpid=50025
  459.  helpfile="iexplore.hlp"> <U></U>S<U>u</U> </LABEL>
  460.  </DIV>
  461.  <INPUT id=radDirectionDown type=radio CHECKED name=radDirection
  462.  ACCESSKEY="G" tabIndex=47 helpid=50024 helpfile="iexplore.hlp"
  463.  style="font-family: ms sans serif; font-size: 8pt; position: absolute;
  464.  left: 18.18em; top: 5.1235em; width: 1em; height: 1em; ">
  465.  <DIV style="font-family: ms sans serif; font-size: 8pt;
  466.  position: absolute; left: 20.1em; top: 5.3235em; width: 4.9em;
  467.  height: 1.521em; ">
  468.  <LABEL ID=lblDirectionDown style="font-family: 'ms sans serif'; font-size: 8pt"
  469.  FOR=radDirectionDown helpid=50024 helpfile="iexplore.hlp"
  470.  tabIndex=50> <U>G</U>iù </LABEL>
  471.  </DIV>
  472. </BODY>
  473. </HTML>
  474.